Weekly Update for February 26

Show and Tell
February 26

Jason

Feature Distributions on Hamby and Phonix Sets

Feature Distributions on Hamby and Phonix Sets

Interval Lengths on Phoenix Set

Interval Lengths by rtrees Predicted Scores

Kiegan

AAFS in Seattle

Statistics and Forensics book

Guillermo

Pressure Sensing Mat

Raw Low Resolution

Interpolated

Ganesh

Writing

Nick

Re-writing Thinning Algorithm

Shiny App

Martin

AAFS (Seattle)

Shoeprint images alignment

Heike

Current

x3ptools

GIT LFS

Finally, color schemes

# devtools::install_github("heike/gretchenalbrecht")
library(gretchenalbrecht)
csafe <- make_palette("https://forensicstats.org/wp-content/uploads/2017/01/csafe-logo-90.png")
cols10 <- get_pal(11, csafe) 

dframe <- data.frame(x = rnorm(1000), y = rnorm(1000), col=sample(1:10, 1000, replace=TRUE))
dframe %>% ggplot(aes(x = x, y=y, colour=factor(col))) + geom_point(size=3) + 
  theme_bw() +
  theme(legend.position="none") +
  scale_colour_manual(values=cols10$col[-1])